void CMyListView::OnDraw(CDC* pDC)
{
	CListDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
	TEXTMETRIC textMetric;
	pDC->GetTextMetrics(&textMetric);
	int fontHeight = textMetric.tmHeight;
	POSITION pos = m_List.GetHeadPosition();
	int displayPosition = 10;
	// Iterate over the list, displaying each node's values.
	while (pos != NULL)
	{
		CStudent* m_pStudent = (CStudent*) m_List.GetNext(pos);
		char s[81];
		sprintf(s, " ĳɼ %d.",m_pStudent->m_nScore);
		CString m_string=m_pStudent->m_strName+s;
		pDC->TextOut(10, displayPosition, m_string);
		displayPosition += fontHeight;
	}
}
